home *** CD-ROM | disk | FTP | other *** search
-
- ***********
- * AddTabs *
- ***********
-
-
-
- Introduction
- ------------
-
- Two months ago I was editing a makefile but I had a big problem :
- My text editor didn't save tabs in my file so make didn't want
- my makefile. So I decided to write this little tool which allows
- you to add tabs in your files.
-
-
- Installation
- ------------
-
- Just copy AddTabs where you want.
-
- Usage
- -----
-
- From CLI : AddTabs <Input> <Output> <char>
-
- where Input is the name of the input file (without tabs), Output is the
- name of the output file (with tabs) and char stands for the character
- which will be swapped with the tab character.
-
- Example : If you have the following makefile,
-
- jdc.o:jdc.h jdc.c
- ^gcc -c jdc.c
-
- you can run AddTabs like that :
-
- AddTabs makefile makefile2 ^
-
- and all '^' will be swapped with nice tabs.
-
- Warning :
-
- - NEVER use the same name for input file and output file or you will
- loose your input file.
-
- - AddTabs searches ALL the characters matching with the one you specify
- so don't use a character which can be useful in your file (I suggest
- ^ for makefiles).
-
- - Respect the syntaxic order when you run AddTabs or the program will
- react in a VERY weird way.
-
-
- Disclaimer
- ----------
-
- You use AddTabs at your own risks. It has been tested for hours on my computer
- (A1200). I can't be responsible if it breaks something (it shouldn't, due
- to the technics used).
-
-
- History
- -------
-
- June 1995 Version 1.0 First release
-
-
- Author / Distribution
- ---------------------
-
- AddTabs has been created by
-
- Mr Franck ANIERE
- 30, Rue Jean Bouin
- 93220 GAGNY (France)
-
- E-Mail : aniere@massena.univ-mlv.fr
- aniere@fillmore.univ-mlv.fr
- aniere@univ-mlv.fr (if the 2 others don't work)
-
- IRC : Nick FSA on the channels #amigafr and #amiga
-
- You can join me for any comments, suggestions or bug reports.
-
- This product is FREEWARE, but I keep a copyright on it.
- You can diffuse and use it freely if you keep the archive
- intact and don't put a virus in it.
-
- Aminet, Fred Fish, Funet and other Public Domain organisations
- or Amiga magazines are allowed to distribute this product, on
- floppy disk as well as on CD ROM if the price of the support is
- normal. France Festival Distribution WILL NEVER BE ALLOWED to
- diffuse it.
-
- To do
- -----
-
- Well, what do you suggest ?
-